net/http.http2http2Config.MaxReadFrameSize (field)

13 uses

	net/http (current package)
		h2_bundle.go#L1054: 	MaxReadFrameSize             uint32
		h2_bundle.go#L1071: 		MaxReadFrameSize:             h2.MaxReadFrameSize,
		h2_bundle.go#L1092: 		MaxReadFrameSize:            h2.MaxReadFrameSize,
		h2_bundle.go#L1100: 	if conf.MaxReadFrameSize < http2minMaxFrameSize {
		h2_bundle.go#L1101: 		conf.MaxReadFrameSize = http2minMaxFrameSize
		h2_bundle.go#L1102: 	} else if conf.MaxReadFrameSize > http2maxFrameSize {
		h2_bundle.go#L1103: 		conf.MaxReadFrameSize = http2maxFrameSize
		h2_bundle.go#L1133: 	http2setDefault(&conf.MaxReadFrameSize, http2minMaxFrameSize, http2maxFrameSize, http2defaultMaxReadFrameSize)
		h2_bundle.go#L1167: 		conf.MaxReadFrameSize = uint32(h2.MaxReadFrameSize)
		h2_bundle.go#L4477: 	fr.SetMaxReadFrameSize(conf.MaxReadFrameSize)
		h2_bundle.go#L4917: 		{http2SettingMaxFrameSize, conf.MaxReadFrameSize},
		h2_bundle.go#L8126: 	cc.fr.SetMaxReadFrameSize(conf.MaxReadFrameSize)
		h2_bundle.go#L8147: 	initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxFrameSize, Val: conf.MaxReadFrameSize})